From 88bea7620208b7e19ab417a597c190486ecc1336 Mon Sep 17 00:00:00 2001 From: Christian Limpach Date: Thu, 12 Oct 2006 11:25:32 +0100 Subject: [PATCH] [xenstore] Don't limit the number of concurrent transactions for domain0 connections since both xend and the xenstore-* utilities used in the hotplug scripts can easily reach the limit and we trust them anyway. Signed-off-by: Christian Limpach --- tools/xenstore/xenstored_transaction.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/xenstore/xenstored_transaction.c b/tools/xenstore/xenstored_transaction.c index fb20287f99..69cc520bb9 100644 --- a/tools/xenstore/xenstored_transaction.c +++ b/tools/xenstore/xenstored_transaction.c @@ -133,7 +133,7 @@ void do_transaction_start(struct connection *conn, struct buffered_data *in) return; } - if (conn->transaction_started > quota_max_transaction) { + if (conn->id && conn->transaction_started > quota_max_transaction) { send_error(conn, ENOSPC); return; } -- 2.30.2